home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bboard.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  70 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10507);
  10.  script_bugtraq_id(1459);
  11.  script_version ("$Revision: 1.11 $");
  12.  script_cve_id("CAN-2000-0629");
  13.  name["english"] = "Sun's Java Web Server remote command execution";
  14.  name["francais"] = "Sun's Java Web Server remote command execution";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'bboard' servlet is installed in 
  18.  /servlet/sunexamples.BBoardServlet. This servlet has
  19. a well known security flaw that lets anyone execute arbitrary
  20. commands with the privileges of the http daemon (root or nobody).
  21.  
  22. Solution : remove it.
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "Le servlet 'bboard' est installΘ dans
  28. /servlet/sunexamples.BBoardServlet.
  29. Celui-ci possΦde un problΦme de sΘcuritΘ bien connu qui permet α n'importe 
  30. qui de faire executer des commandes arbitraires au daemon http, avec les
  31. privilΦges de celui-ci (root ou nobody). 
  32.  
  33. Solution : retirez-le.
  34.  
  35. Facteur de risque : SΘrieux";
  36.  
  37.  
  38.  script_description(english:desc["english"], francais:desc["francais"]);
  39.  
  40.  summary["english"] = "Checks for the presence of /servlet/sunexamples.BBoardServlet";
  41.  summary["francais"] = "VΘrifie la prΘsence de /servlet/sunexamples.BBoardServlet";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("http_version.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. #
  59. # The script code starts here
  60. #
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63. port = get_http_port(default:80);
  64. res = is_cgi_installed_ka(item:"/servlet/nessus." + rand(), port:port);
  65. if ( res ) exit(0);
  66.  
  67. res = is_cgi_installed_ka(item:"/servlet/sunexamples.BBoardServlet", port:port);
  68. if( res )security_hole(port);
  69.  
  70.